home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / dev / misc / LEDA_high.lha / LEDA-3.1c-high / util / make_pro.bcc < prev    next >
Encoding:
Text File  |  1994-08-05  |  627 b   |  32 lines

  1.  
  2. #-----------------------------------------------------------------------------
  3. # BORLAND
  4. #-----------------------------------------------------------------------------
  5. #.SWAP
  6. e = .exe
  7.  
  8. .obj.exe:
  9.     bcc -P -Qx -mh $*.obj $(DOSLIB)
  10. .c.obj:
  11.     bcc -P -Qx -w- -mh -I..\..\incl -c $*.c
  12. .c.exe:
  13.     bcc -P -Qx -w- -mh -I..\..\incl -c $*.c
  14.     bcc -P -Qx -mh $*.obj $(DOSLIB)
  15.  
  16. #-----------------------------------------------------------------------------
  17. # Programs
  18. #-----------------------------------------------------------------------------
  19.  
  20.  
  21. include Make.lst
  22.  
  23. #BCC !include "Make.lst"
  24.  
  25.  
  26. all: $(PROGS)
  27.  
  28. clean:
  29.     rm -f *.o $(PROGS) core
  30.  
  31.  
  32.